home *** CD-ROM | disk | FTP | other *** search
/ SGI Freeware 2002 November / SGI Freeware 2002 November - Disc 2.iso / dist / fw_guile.idb / usr / freeware / share / guile / 1.5.6 / oop / goops / old-define-method.scm.z / old-define-method.scm
Text File  |  2002-07-08  |  3KB  |  86 lines

  1. ;;; installed-scm-file
  2.  
  3. ;;;;     Copyright (C) 2001 Free Software Foundation, Inc.
  4. ;;;; 
  5. ;;;; This program is free software; you can redistribute it and/or modify
  6. ;;;; it under the terms of the GNU General Public License as published by
  7. ;;;; the Free Software Foundation; either version 2, or (at your option)
  8. ;;;; any later version.
  9. ;;;; 
  10. ;;;; This program is distributed in the hope that it will be useful,
  11. ;;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. ;;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13. ;;;; GNU General Public License for more details.
  14. ;;;; 
  15. ;;;; You should have received a copy of the GNU General Public License
  16. ;;;; along with this software; see the file COPYING.  If not, write to
  17. ;;;; the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
  18. ;;;; Boston, MA 02111-1307 USA
  19. ;;;;
  20. ;;;; As a special exception, the Free Software Foundation gives permission
  21. ;;;; for additional uses of the text contained in its release of GUILE.
  22. ;;;;
  23. ;;;; The exception is that, if you link the GUILE library with other files
  24. ;;;; to produce an executable, this does not by itself cause the
  25. ;;;; resulting executable to be covered by the GNU General Public License.
  26. ;;;; Your use of that executable is in no way restricted on account of
  27. ;;;; linking the GUILE library code into it.
  28. ;;;;
  29. ;;;; This exception does not however invalidate any other reasons why
  30. ;;;; the executable file might be covered by the GNU General Public License.
  31. ;;;;
  32. ;;;; This exception applies only to the code released by the
  33. ;;;; Free Software Foundation under the name GUILE.  If you copy
  34. ;;;; code from other Free Software Foundation releases into a copy of
  35. ;;;; GUILE, as the General Public License permits, the exception does
  36. ;;;; not apply to the code that you add in this way.  To avoid misleading
  37. ;;;; anyone as to the status of such modified files, you must delete
  38. ;;;; this exception notice from them.
  39. ;;;;
  40. ;;;; If you write modifications of your own for GUILE, it is your choice
  41. ;;;; whether to permit this exception to apply to your modifications.
  42. ;;;; If you do not wish that, delete this exception notice.
  43. ;;;; 
  44.  
  45.  
  46. (define-module (oop goops old-define-method)
  47.   :use-module (oop goops)
  48.   :export (define-method)
  49.   :no-backtrace
  50.   )
  51.  
  52. (define define-method
  53.   (procedure->memoizing-macro
  54.     (lambda (exp env)
  55.       (let ((name (cadr exp)))
  56.     (if (and (pair? name)
  57.          (eq? (car name) 'setter)
  58.          (pair? (cdr name))
  59.          (symbol? (cadr name))
  60.          (null? (cddr name)))
  61.         (let ((name (cadr name)))
  62.           (cond ((not (symbol? name))
  63.              (goops-error "bad method name: ~S" name))
  64.             ((defined? name env)
  65.              `(begin
  66.             ;; *fixme* Temporary hack for the current module system
  67.             (if (not ,name)
  68.                 (define-accessor ,name))
  69.             (add-method! (setter ,name) (method ,@(cddr exp)))))
  70.             (else
  71.              `(begin
  72.             (define-accessor ,name)
  73.             (add-method! (setter ,name) (method ,@(cddr exp)))))))
  74.         (cond ((not (symbol? name))
  75.            (goops-error "bad method name: ~S" name))
  76.           ((defined? name env)
  77.            `(begin
  78.               ;; *fixme* Temporary hack for the current module system
  79.               (if (not ,name)
  80.               (define-generic ,name))
  81.               (add-method! ,name (method ,@(cddr exp)))))
  82.           (else
  83.            `(begin
  84.               (define-generic ,name)
  85.               (add-method! ,name (method ,@(cddr exp)))))))))))
  86.